4edad9f19b
* More liberal .gitignores on TS output directories * Use project references for Typescript projects * Use /dist dir for Cloud Functions deployment payload * Disable `next build` typechecking * Fiddle with GitHub tsc jobs
32 lines
677 B
JSON
32 lines
677 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"composite": true,
|
|
"baseUrl": "../",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
],
|
|
|
|
"watchOptions": {
|
|
"excludeDirectories": [".next"]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|