23 lines
478 B
JSON
23 lines
478 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES5",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"lib": ["es6", "dom"],
|
|
"downlevelIteration": true
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": ["test"],
|
|
"include": [
|
|
"src",
|
|
"test.d.ts",
|
|
"node_modules/@types/css-font-loading-module/index.d.ts"
|
|
]
|
|
}
|