mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 08:02:15 +11:00
24 lines
480 B
JSON
24 lines
480 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"charset": "utf-8",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"pretty": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./build"
|
|
},
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"exclude": [ "node_modules", "coverage" ]
|
|
}
|