33 строки
677 B
JSON
33 строки
677 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",
|
|
"src/**/*.stories.ts",
|
|
"src/**/fixtures/",
|
|
"src/utilities/storybook/"
|
|
]
|
|
}
|