-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig-shared.json
More file actions
42 lines (42 loc) · 981 Bytes
/
tsconfig-shared.json
File metadata and controls
42 lines (42 loc) · 981 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"lib": ["es2019", "dom"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"jsx": "react",
"esModuleInterop": true,
"rootDir": ".",
"module": "commonjs",
"target": "es2018",
"sourceMap": true,
"moduleResolution": "node",
"downlevelIteration": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./packages/lesswrong/*"],
"@/allComponents": ["./packages/lesswrong/lib/generated/allComponents.ts"]
}
},
"include": [
"packages/lesswrong",
"ckEditor/src/editorConfigs.js",
"playwright",
"./build.ts"
],
"exclude": [
"node_modules",
"packages/lesswrong/viteClient",
"build",
"packages/lesswrong/lib/vendor/@material-ui"
],
"ts-node": {
"files": true
}
}