1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-20 07:30:11 +02:00
html-w3c-validator/tsconfig.json

15 lines
321 B
JSON
Raw Permalink Normal View History

2022-01-06 19:52:25 +01:00
{
2023-01-10 22:15:14 +01:00
"extends": "@tsconfig/strictest/tsconfig.json",
2022-01-06 19:52:25 +01:00
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
2023-12-26 22:43:05 +01:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2022-01-06 19:52:25 +01:00
"outDir": "./build",
"rootDir": "./src",
"noEmit": true,
2023-12-26 22:43:05 +01:00
"exactOptionalPropertyTypes": false,
2024-05-23 21:21:34 +02:00
"checkJs": false
}
2022-01-06 19:52:25 +01:00
}