26 строки
591 B
JSON
26 строки
591 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"declarationDir": "dist",
|
|
"lib": ["dom", "es6"],
|
|
"pretty": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"noEmitOnError": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": false,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "test-webview", "src/**/*.spec.ts"]
|
|
}
|