21 lines
464 B
JSON
21 lines
464 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esNext",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmitOnError": true,
|
|
"strictNullChecks": true,
|
|
"target": "es6",
|
|
"lib": ["ES2017", "DOM"],
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist/web",
|
|
"declaration": true
|
|
},
|
|
"include": ["js"]
|
|
}
|