16 lines
398 B
JSON
16 lines
398 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowJs": true,
|
|
"jsx": "preserve",
|
|
"plugins": [{ "name": "next" }],
|
|
"incremental": true
|
|
},
|
|
"exclude": ["node_modules", "dist", "coverage"]
|
|
}
|