20 lines
382 B
JSON
20 lines
382 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"jsx": "react",
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"noEmitOnError": false,
|
||
|
"target": "ES2020",
|
||
|
"baseUrl": "."
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"../../packages/types/*.d.ts",
|
||
|
"../../packages/types/next-auth.d.ts",
|
||
|
"./src/**/*.ts",
|
||
|
"./src/**/*.tsx",
|
||
|
"../lib/**/*.ts"
|
||
|
]
|
||
|
}
|