You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

34 lines
670 B

{
"compilerOptions": {
"allowJs": false,
"alwaysStrict": true,
"declaration": true,
"declarationDir": "./types",
"esModuleInterop": false,
"lib": [
"es2017",
"dom"
],
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"outDir": "./src",
"rootDir": "./ts-src",
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "es2017",
"types": [
"node"
]
},
"include": [
"ts-src/*.ts"
],
"exclude": [
"**/*.spec.ts",
"node_modules/**/*"
]
}