-
-
Notifications
You must be signed in to change notification settings - Fork 140
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 738 Bytes
/
Copy pathtsconfig.json
File metadata and controls
27 lines (27 loc) · 738 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
{
"include": [
"client/**/*.ts"
],
"compilerOptions": {
"paths": {
"@/*": [ "./client/*" ],
"@toast-ui/editor": [ "./node_modules/@toast-ui/editor/types/index.d.ts" ]
},
"noEmit": true,
"incremental": true,
"strict": false,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"skipLibCheck": true,
"module": "es2020",
"moduleResolution": "bundler",
"lib": ["DOM", "es2020"],
"target": "es2020",
"isolatedModules": true
}
}