mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-21 20:09:50 -04:00
24 lines
472 B
JSON
24 lines
472 B
JSON
{
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["**/*.test.*"],
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"newLine": "lf",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"target": "es6"
|
|
}
|
|
}
|