mirror of
https://github.com/rowyio/rowy.git
synced 2026-02-23 19:50:01 +01:00
21 lines
483 B
JSON
21 lines
483 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"rootDir": "./",
|
|
"outDir": "./build",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ESNext"],
|
|
"strictNullChecks": false
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": ["functions", "build"],
|
|
"include": ["*.ts", "firebase.json", "sparksLib"]
|
|
}
|