16 lines
295 B
JSON
16 lines
295 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"lib": [ "dom", "esnext" ],
|
|
"module": "esnext",
|
|
"target": "ES2017",
|
|
"strict": false,
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "node",
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"static"
|
|
],
|
|
"include": ["src/**/*.ts"]
|
|
}
|