18 строки
447 B
JSON
18 строки
447 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"declaration": false,
|
|
"jsx": "react"
|
|
},
|
|
"compileOnSave": true,
|
|
"include": ["src/**/*.ts", "src/**/*.js"],
|
|
"exclude": ["node_modules", "src/.eslintrc.js", "src/web/**", "src/**/*webpack.config.js"]
|
|
}
|