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.
 
 

36 lines
739 B

{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"outDir": "./test",
"declaration": false,
"rootDir": "./ts_test",
"types": [
"node"
],
"lib": [
"es2018",
"dom"
],
"allowJs": false,
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"alwaysStrict": false,
"esModuleInterop": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"resolveJsonModule": true
},
"include": [
"ts_test/**/*.ts"
],
"exclude": [
"**/*.spec.ts",
"node_modules/**/*"
]
}