-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
31 lines (26 loc) · 868 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"checkJs": true,
"noEmit": true,
// if you'd like to warn if you're using modern features, change these
// both to e.g., "es2017"
"module": "NodeNext",
"target": "ESNext",
"moduleResolution": "NodeNext",
// proper es6 support
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// configure as you like: these are my preferred defaults!
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
// "strict" implies this, and it's good for new projects, but difficult to retrofit to old
// untyped projects
"noImplicitAny": true,
// modern TS stuff that allows lit-element to work
"experimentalDecorators": true,
"useDefineForClassFields": false,
"allowImportingTsExtensions": true
},
"include": ["*.ts", "**/*.ts"]
}