20 lines
433 B
JSON
20 lines
433 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es5",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"lib": ["ES2015", "DOM"],
|
||
|
|
"outDir": "dist/src",
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": false,
|
||
|
|
"rootDir": "./src",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {}
|
||
|
|
},
|
||
|
|
"include": ["./src/global.d.ts", "./src/*"],
|
||
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
||
|
|
}
|