forked from deepnote/deepnote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 734 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"alwaysStrict": true,
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022"],
"module": "esnext",
"moduleResolution": "bundler",
"noImplicitAny": true,
"noImplicitThis": true,
"paths": {
"@deepnote/*": ["packages/*/src/index.ts"],
"@test-fixtures/*": ["test-fixtures/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ES2022",
"types": ["vitest"]
},
"exclude": ["node_modules", "dist"]
}