mirror of
https://github.com/mdgriffith/elm-optimize-level-2.git
synced 2024-11-25 22:50:42 +03:00
26 lines
584 B
JSON
26 lines
584 B
JSON
{
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "CommonJS",
|
|
"lib": ["dom", "esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"*": ["src/*", "node_modules/*"]
|
|
},
|
|
"jsx": "react",
|
|
"esModuleInterop": true
|
|
}
|
|
}
|