19 lines
489 B
JSON
19 lines
489 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"pretty": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"strictPropertyInitialization": true
|
|
},
|
|
"include": ["lib/**/*.ts", "index.ts", "src/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|