2021-03-18 14:26:41 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-16 16:27:10 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-10-02 16:01:17 +00:00
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-04-09 13:48:39 +00:00
|
|
|
"skipLibCheck": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"target": "ESNext",
|
2021-03-28 20:14:04 +00:00
|
|
|
"module": "ESNext",
|
2021-03-18 14:26:41 +00:00
|
|
|
"moduleResolution": "Node",
|
2022-08-26 15:47:29 +00:00
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"allowJs": true,
|
2022-08-12 17:47:58 +00:00
|
|
|
"noEmit": true,
|
2021-06-16 11:18:38 +00:00
|
|
|
"noUnusedLocals": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": [
|
2022-01-13 17:54:33 +00:00
|
|
|
"node"
|
2021-08-11 20:28:38 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
2021-10-02 16:01:17 +00:00
|
|
|
"#app": [
|
2022-04-20 08:52:39 +00:00
|
|
|
"./packages/nuxt/src/app/index"
|
2021-10-02 16:01:17 +00:00
|
|
|
],
|
|
|
|
"#app/*": [
|
2022-04-20 08:52:39 +00:00
|
|
|
"./packages/nuxt/src/app/*"
|
2022-04-29 09:38:22 +00:00
|
|
|
],
|
2022-08-12 17:47:58 +00:00
|
|
|
"#internal/nitro": [
|
|
|
|
"./node_modules/nitropack/dist/runtime"
|
|
|
|
],
|
2023-03-16 16:27:10 +00:00
|
|
|
"#internal/nitro/app": [
|
|
|
|
"./node_modules/nitropack/dist/runtime/app"
|
|
|
|
],
|
2022-08-12 17:47:58 +00:00
|
|
|
"#internal/nitro/utils": [
|
|
|
|
"./node_modules/nitropack/dist/runtime/utils"
|
2023-05-09 17:08:07 +00:00
|
|
|
],
|
|
|
|
"#vue-router": [
|
|
|
|
"./node_modules/vue-router"
|
2022-08-12 17:47:58 +00:00
|
|
|
]
|
2021-08-11 20:28:38 +00:00
|
|
|
}
|
2021-04-09 13:48:39 +00:00
|
|
|
},
|
2021-08-11 17:12:21 +00:00
|
|
|
"exclude": [
|
2022-08-26 15:47:29 +00:00
|
|
|
"**/dist/**",
|
2021-10-12 17:53:36 +00:00
|
|
|
"**/.nuxt/**",
|
2022-04-29 09:38:22 +00:00
|
|
|
"**/nuxt.d.ts",
|
|
|
|
"**/examples/**",
|
|
|
|
"**/docs/**",
|
|
|
|
"**/playground/**",
|
2023-07-02 08:59:16 +00:00
|
|
|
"**/test/fixtures/**",
|
|
|
|
"test/nuxt/**"
|
2021-08-11 17:12:21 +00:00
|
|
|
]
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|