33 lines
797 B
JSON
33 lines
797 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM", "ScriptHost"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"declarationDir": "./lib",
|
|
"outDir": "./lib",
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitOverride": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"src/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["./src", "./typings", "./test", "./docs-source"]
|
|
}
|
|
|