* Add linting * Add issue templates and docs * Add root eslint config and remove tslint * Autofix lint issues
24 lines
555 B
JSON
24 lines
555 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"target": "ES6",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
"lib": ["es6", "dom"],
|
|
"downlevelIteration": true,
|
|
"importsNotUsedAsValues": "error"
|
|
},
|
|
"exclude": ["test"],
|
|
"include": [
|
|
"src",
|
|
"scripts",
|
|
"node_modules/@types/css-font-loading-module/index.d.ts",
|
|
"node_modules/@types/jest-image-snapshot/index.d.ts"
|
|
]
|
|
}
|