mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-25 13:45:08 +03:00
34 lines
641 B
JSON
34 lines
641 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "CommonJS",
|
|
"lib": [
|
|
"es6",
|
|
"esnext"
|
|
],
|
|
"importHelpers": false,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"esModuleInterop": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
|
|
"__tests__",
|
|
"**/__tests__",
|
|
"src/__tests__"
|
|
]
|
|
} |